mscJNeuralNet.trainingAlgorithms.enumerations
Class TrainingAlgorithmsEnumeration

java.lang.Object
  extended bymscJNeuralNet.trainingAlgorithms.enumerations.TrainingAlgorithmsEnumeration
All Implemented Interfaces:
java.util.Enumeration

public class TrainingAlgorithmsEnumeration
extends java.lang.Object
implements java.util.Enumeration

Enumeration über alle verfügbaren Klassen, welche die Schnittstelle INetTrainingAlgorithm implementieren.
Es werden die INetTrainingAlgorithm in der folgenden Reihenfolge zurückgeliefert:

  • BackpropagationMomentum
  • QuickProp
  • RProp
  • RPropWeightDecay
  • SuperSABMomentum
  • Created on 09.06.2004

    Version:
    09.06.2004
    Author:
    M. Serhat Cinar
    See Also:
    INetTrainingAlgorithm, Enumeration

    Constructor Summary
    TrainingAlgorithmsEnumeration()
               
     
    Method Summary
     boolean hasMoreElements()
               
     java.lang.Object nextElement()
              Es wird jeweils ein Objekt des Typs INetTrainingAlgorithm zurückgeliefert.
     
    Methods inherited from class java.lang.Object
    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
     

    Constructor Detail

    TrainingAlgorithmsEnumeration

    public TrainingAlgorithmsEnumeration()
    Method Detail

    hasMoreElements

    public boolean hasMoreElements()
    Specified by:
    hasMoreElements in interface java.util.Enumeration

    nextElement

    public java.lang.Object nextElement()
    Es wird jeweils ein Objekt des Typs INetTrainingAlgorithm zurückgeliefert.

    Specified by:
    nextElement in interface java.util.Enumeration
    See Also:
    Enumeration.nextElement(), INetTrainingAlgorithm